home *** CD-ROM | disk | FTP | other *** search
/ Private Casting / Casting One.bin / Docs / Models.dir / 00014.ls < prev    next >
Encoding:
Text File  |  1998-02-21  |  665 b   |  26 lines

  1. on mouseEnter
  2.   cursor([cast "curs", cast "mask"])
  3.   set the castNum of sprite 1 to the number of member "fondo rebajado"
  4.   set the castNum of sprite 2 to the number of member string(the currentSpriteNum - 2)
  5.   set the visible of sprite 2 to 1
  6.   set the visible of sprite (the currentSpriteNum + 6) to 1
  7.   updateStage()
  8. end
  9.  
  10. on mouseLeave
  11.   cursor(-1)
  12.   set the castNum of sprite 1 to the number of member "fondo normal"
  13.   set the visible of sprite 2 to 0
  14.   repeat with x = 9 to 14
  15.     set the visible of sprite x to 0
  16.   end repeat
  17. end
  18.  
  19. on mouseUp
  20.   global chica
  21.   cursor(-1)
  22.   set chica to numToChar(the clickOn - 2 + 64)
  23.   go(1, "interview")
  24.   puppetSound(0)
  25. end
  26.